Search results

Types

Classes
Interfaces
Enums
Functions
Type aliases
Constants

Members

Properties
Methods
Getters
Setters
Enum members
Show privates

Other

In this module only

Const ConnectionUrls

Defined in endpoints

Tools.URIEncodeWrap({
  FACEBOOK: (id: string): string =>
    `https://www.facebook.com/${id}`,
  REDDIT: (name: string): string =>
    `https://www.reddit.com/u/${name}`,
  SKYPE: (id: string): string =>
    `skype:${id}?userinfo`,
  SPOTIFY: (id: string): string =>
    `https://open.spotify.com/user/${id}`,
  STEAM: (id: string): string =>
    `https://steamcommunity.com/profiles/${id}`,
  TWITCH: (name: string): string =>
    `https://www.twitch.tv/${name}`,
  TWITTER: (name: string): string =>
    `https://twitter.com/${name}`,
  YOUTUBE: (id: string): string =>
    `https://www.youtube.com/channel/${id}`,
})